home *** CD-ROM | disk | FTP | other *** search
- /* $Id$
- *
- * File pgn.sym
- * Part of ChessBase utilities file format (CBUFF)
- * Author Anjo Anjewierden, anjo@swi.psy.uva.nl
- * Purpose Mapping of symbol names onto Portable Game Notation
- * Works with CBUFF 0.4
- *
- * Notice Copyright (c) 1993 Anjo Anjewierden
- *
- * History 07/07/93 (Created)
- * 07/07/93 (Last modified)
- */
-
-
- /*------------------------------------------------------------
- * Chess pieces
- *------------------------------------------------------------*/
-
- KingSymbol: "K"
- QueenSymbol: "Q"
- RookSymbol: "R"
- BishopSymbol: "B"
- KnightSymbol: "N"
- PawnSymbol: "P" Only used for comments
-
-
- /*------------------------------------------------------------
- * Result of a game
- *------------------------------------------------------------*/
-
- WhiteWins: "1-0"
- BlackWins: "0-1"
- Draw: "1/2-1/2"
-
-
- /*------------------------------------------------------------
- * Printing moves
- *------------------------------------------------------------*/
-
- CastlingShort: "O-O" Capital O
- CastlingLong: "O-O-O" Capital O
- CaptureSymbol: "x"
- IncheckSymbol: "+"
- MoveHyphen: "-"
- PromotionSymbol: "="
- WhiteMoveSymbol: ". "
- BlackMoveSymbol: "..."
-